home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / AudioApps / Resound / StringTable.h < prev    next >
Text File  |  1992-12-20  |  433b  |  22 lines

  1. /*
  2. StringTable
  3. March 25, 1992
  4.  
  5. I hate making arrays of strings, so I created a string object and just had arrays of id's instead.  It's inefficient, I know, but it's convenient.  Used by the Sound Table.
  6.  
  7. */
  8.  
  9.  
  10. #import <objc/Object.h>
  11. #define MAXSTRINGLENGTH  256
  12.  
  13. @interface StringTable:Object
  14. {
  15.     char String [MAXSTRINGLENGTH];        // String length.  Yes, I know...
  16. }
  17.  
  18. - ChangeString:(char *) ThisString;
  19. - (char *) ReturnString;
  20.  
  21. @end
  22.